body {
    font-family: 'Arial', sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

.container {
    display: flex;
    max-width: 1000px;
    margin: 40px auto;
    background-color: #ffffff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.container:hover {
    transform: scale(1.02);
}

.image-container {
    flex: 1;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container img {
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.image-container img:hover {
    transform: scale(1.05);
}

.description-container {
    flex: 1.5;
    padding: 20px;
}

.description-container h1 {
    margin-top: 0;
    color: #333;
    font-size: 28px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.description-container p {
    margin: 10px 0;
    line-height: 1.6;
    color: #555;
}

.button-group {
    margin-top: 20px;
}

button {
    background-color: #f8c145; /* Example yellow color */
    border: none;
    color: white;
    padding: 14px 28px;
    margin-right: 10px;
    cursor: pointer;
    border-radius: 8px;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

button:hover {
    background-color: #e0a93f; /* Darker yellow on hover */
    transform: scale(1.05);
}

button:active {
    background-color: #c88e2f; /* Even darker yellow on active */
    transform: scale(0.98);
}

button:focus {
    outline: 2px solid #e0a93f; /* Yellow outline on focus */
}
